home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / tcl / tclmotif.1 / tclmotif / tm.1.2 / wtour / form1.tcl < prev    next >
Encoding:
Text File  |  1994-01-30  |  436 b   |  18 lines

  1. #
  2. # a Form containing a mixture of objects
  3. #
  4. # Note how attachments have to be set to stop 
  5. # them piling up in the left top corner.
  6.  
  7. xmForm .form managed
  8.  
  9. xmLabel .form.lab managed \
  10.     -labelString "A label"
  11. xmPushButton .form.button managed \
  12.     -labelString "A button" \
  13.     -topAttachment attach_widget \
  14.     -topWidget .form.lab
  15. xmArrowButton .form.arrow managed \
  16.     -topAttachment attach_widget \
  17.     -topWidget .form.button
  18.